@charset "utf-8";
/* CSS Document */
/*
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
*/

@font-face {
	font-family: "impact";
	src: url('../fonts/impact.ttf') format('truetype');
}

.container{
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
}


.header .container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo{
	width: 386px;
	height: 100px;
}
.logo img{
	object-fit: contain;
}

.menu li{
	display: block;
	float: left;
	line-height: 100px;
	position: relative;
}
.menu li a{
	padding: 0 50px;
	display: block;
	font-size: 18px;
	color: #222;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.menu>li.this>a,
.menu>li:hover>a{
	background: #036ea4;
	color: #fff;
}
.menu li ul{
	position: absolute;
	left: 0;
	top: 100px;
	width: 100%;
	display: none;
	padding: 11px 0 0 0;
	z-index: 9;
	background: url("../images/triangle.png") center top 1px no-repeat;
	box-shadow: 6px 6px 12px 0 rgba(0,0,0,.1);
}
.menu li ul li{
	background: #fff;
	line-height: 54px;
	float: none;
	text-align: center;
}
.menu li ul li a{
	padding: 0 20px;
}
.menu>li>ul>li>a:hover{
	color: #036ea4;
}
.menu li ul li:first-child{
	padding: 10px 0 0 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.menu li ul li:last-child{
	padding: 0 0 10px 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.menu li ul li ul{
	left: 100%;
	top: 0;
/*	width: 100%;*/
	padding: 0 0 0 8px;
	background: none;
}
.menu>li>ul>li>ul>li>a{
	font-size: 16px;
}
.menu>li>ul>li>ul>li>a:hover{
	color: #000;
	background: #f5f5f5;
}
.menu li .iconfont{
	display: none;
}

.top_tel a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top_tel .iconfont{
	color: #036ea4;
	margin: 0 14px 0 0;
	font-size: 36px;
}
.top_tel p{
	font-size: 16px;
	color: #333;
}
.top_tel p strong{
	font-size: 24px;
	color: #036ea4;
	display: block;
}

.banner .swiper-slide{
	position: relative;
	overflow: hidden;
}
.banner .bannerarea{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}
.banner .bannerarea .container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10% auto 0 auto;
}


.banner1 .text{
	max-width: 490px;
}
.banner1 .text strong{
	font-size: 58px;
}
.banner1 .text p{
	font-size: 18px;
	line-height: 28px;
	color: #666;
	margin: 20px 0 50px 0;
}
.banner1 .text a{
	width: 180px;
	line-height: 48px;
	display: block;
	border-radius: 25px;
	border: 1px solid #000;
	font-size: 16px;
	text-align: center;
}
.banner1 .text a .iconfont{
	font-size: 24px;
	display: inline-block;
	vertical-align: bottom;
}
.banner1 .bannerpic{
	position: absolute;
	right: 0;
	margin: 70px 0 0 0;
	max-width: 77.6%;
}

.pagination-banner span{
	width: 50px;
	height: 8px;
	background: #ccc;
	margin: 0 7px;
}
.pagination-banner span.swiper-active-switch{
	background: #036ea4;
}


.procate{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.procate li{
	width: 25%;
	display: block;
}
.procate li a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.procate li:last-child a{
	border: none;
}
.procate li .iconfont{
	font-size: 48px;
	margin: 0 15px 0 0;
}
.procate li p{
	font-size: 18px;
	color: #222;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.procate li span{
	font-size: 14px;
	color: #999;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.procate li.this a,
.procate li:hover a{
	background: #036ea4;
	color: #fff;
}
.procate li.this p,
.procate li:hover p{
	color: #fff;
}
.procate li.this span,
.procate li:hover span{
	color: #fff;
	opacity: .5;
}


.stitle{
	text-align: center;
}
.stitle span{
	font-family: "impact";
	text-transform: uppercase;
	color: #036ea4;
	line-height: 40px;
	display: block;
	font-size: 48px;
}
.stitle p{
	color: #111;
	font-weight: bold;
	font-size: 30px;
	line-height: 32px;
	margin: 15px 0 0 0;
}


.pro .container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pro .stitle{
	width: 23%;
	text-align: justify;
}

.stitle .text{
	font-size: 14px;
	line-height: 28px;
	color: #666;
	margin: 40px 0 70px 0;
}
.stitle a.more{
	width: 180px;
	line-height: 50px;
	display: block;
	border-radius: 25px;
	font-size: 16px;
	text-align: center;
	background: #036ea4;
	color: #fff;
	border: 1px solid #036ea4;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.stitle a.more .iconfont{
	font-size: 24px;
	display: inline-block;
	vertical-align: bottom;
	color: #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.stitle a.more:hover{
	background: #fff;
	color: #036ea4;
}
.stitle a.more:hover .iconfont{
	color: #036ea4;
}


.pro .proslide{
	width: 71.5%;
	margin: 0;
	position: relative;
}
.proslide li a{
	display: block;
	background: #f1f1f1;
	margin: 0 15px;
	padding: 0 0 30px 0;
}
.proslide li p{
	padding: 0 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	font-size: 20px;
	line-height: 20px;
}
.proslide li p::before{
	width: 40px;
	height: 4px;
	background: #036ea4;
	content: '';
	display: block;
	margin: 0 auto 20px auto;
}
.proslide li:hover .pic img{
	transform: scale(1.1);
}

.arrow_proslide{
	width: 50px;
	line-height: 50px;
	text-align: center;
	background: #eee;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	margin-top: -25px;
	font-size: 30px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.arrow_proslide:hover{
	background: #036ea4;
	color: #fff;
}
.arrow_proslide_left{
	left: -50px;
	transform: rotate(180deg);
}
.arrow_proslide_right{
	right: -50px;
}


.youshibg{
	background: url("../images/bg_ys.jpg") center no-repeat;
	background-size: cover;
}
.youshibg .stitle span{
	color: #b2b2b2;
}
.youshibg .stitle p{
	color: #fff;
}

.youshilist li{
	display: block;
	float: left;
	width: 23%;
	margin: 0 2.666% 0 0;
	background: #fff;
	border-radius: 12px;
	padding: 50px 45px;
	box-sizing: border-box;
	text-align: center;
}
.youshilist li:last-child{
	margin: 0;
}
.youshilist li strong{
	display: block;
	font-size: 20px;
	margin: 20px 0 25px 0;
}
.youshilist li p{
	font-size: 14px;
	line-height: 24px;
	color: #666;
}
.youshilist li:hover img{
	-webkit-animation: 	icon-bounce 0.5s alternate;
	-moz-animation: 	icon-bounce 0.5s alternate;
	-ms-animation: 		icon-bounce 0.5s alternate;
	-o-animation: 		icon-bounce 0.5s alternate;
	animation: 			icon-bounce 0.5s alternate;
}


.aboutbg{
	background: url("../images/bg_about.jpg") center no-repeat;
	background-size: cover;
}
.aboutbg .stitle{
	text-align: left;
}
.aboutbg .stitle span{
	color: #fff;
}
.aboutbg .stitle p{
	color: #fff;
}

.aboutbg .container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about{
	width: 50%;
}
.about .text{
	font-size: 16px;
	line-height: 32px;
	color: #fff;
	margin: 40px 0 0 0;
}

.about a{
	width: 180px;
	line-height: 48px;
	display: block;
	border-radius: 25px;
	border: 1px solid #fff;
	font-size: 16px;
	text-align: center;
	margin: 100px 0 0 0;
	color: #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.about a .iconfont{
	font-size: 24px;
	display: inline-block;
	vertical-align: bottom;
	color: #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.about a:hover{
	background: #fff;
	color: #036ea4;
}
.about a:hover .iconfont{
	color: #036ea4;
}

.abouticon{
	width: 39%;
}
.abouticon li{
	display: block;
	width: 32%;
	margin: 0 2% 2% 0;
	color: #fff;
	float: left;
	text-align: center;
	padding: 50px 0;
}
.abouticon li:nth-child(3),
.abouticon li:nth-child(7){
	margin: 0 0 2% 0;
}
.abouticon li .num,
.abouticon li .num span{
	font-size: 46px;
	font-family: "impact";
}
.abouticon li .iconfont{
	font-size: 66px;
}
.abouticon li p{
	margin: 10px 0 0 0;
}

.abouticon li:nth-child(2){
	background: #fff;
}
.abouticon li:nth-child(2) .num{
	color: #015681;
}
.abouticon li:nth-child(2) p{
	color: #222;
}
.abouticon li:nth-child(3){
	background: rgba(255,255,255,.2);
}
.abouticon li:nth-child(5){
	background: rgba(0,0,0,.2);
}
.abouticon li:nth-child(6){
	background: rgba(255,255,255,.2);
}
.abouticon li:nth-child(7){
	background: rgba(0,0,0,.2);
}


.news .container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news .stitle{
	text-align: justify;
	width: 24%;
}
.news .stitle .newscate li{
	display: block;
	width: 160px;
	line-height: 50px;
	margin: 0 0 30px 0;
	text-align: center;
}
.news .stitle .newscate li:last-child{
	margin: 0;
}
.news .stitle .newscate li a{
	display: block;
	border: 1px solid #fff;
	color: #666;
	font-size: 18px;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.news .stitle .newscate li.this a{
	border: 1px solid #111;
	font-weight: bold;
	color: #111;
}



.newslist{
	width: 76%;
}
.newslist li{
	display: block;
	float: left;
	width: 32%;
	margin: 0 2% 0 0;
}
.newslist li:last-child{
	margin: 0;
}
.newslist li .text{
	padding: 30px;
	border: 1px solid #eee;
	border-top: none;
}
.newslist li .text span{
	font-size: 18px;
	color: #111;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.newslist li .text p{
	font-size: 14px;
	color: #999;
	line-height: 26px;
	margin: 10px 0 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newslist li .date,
.newslist li .more{
	font-size: 14px;
	color: #999;
}
.newslist li:hover .pic img{
	transform: scale(1.1);
}
.newslist li:hover .text span{
	color: #036ea4;
}


.casebg{
	background: url("../images/bg_case.jpg") center no-repeat;
	background-size: cover;
}

.case .pic{
	display: table;
	margin: 0 auto;
}



.message{
	background: url("../images/bg_message.jpg") center no-repeat;
	background-size: cover;
}
.message .stitle span{
	color: #b2b2b2;
}
.message .stitle p{
	color: #fff;
}

.message form li{
	display: block;
	width: 49%;
	margin: 0 2% 2% 0;
	float: left;
	position: relative;
}
.message form li:nth-child(2),
.message form li:nth-child(4){
	margin: 0 0 2% 0;
}
.message form li.lytext{
	float: none;
	width: 100%;
	margin: 0 0 2% 0;
}
.message form li.subbutton{
	float: none;
	width: 100%;
	margin: 0;
	line-height: 50px;
	background: #036ea4;
	cursor: pointer;
	text-align: center;
	color: #fff;
	font-size: 16px;
	position: relative;
}
.message form li.subbutton::after{
	position: absolute;
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #fff;
	left: 50%;
	bottom: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.message form li.subbutton:hover::after{
	width: 100%;
	left: 0;
}


.message form li input{
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	border: 1px solid #999;
	height: 48px;
	background: none;
	color: #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.message form li textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 15px 20px;
	border: 1px solid #999;
	height: 150px;
	background: none;
	color: #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.message form li img{
	position: absolute;
	right: 1px;
	top: 1px;
	width: 82px;
	height: 35px;
	padding: 6px 0;
	background: #999;
}
.message form li input:hover,
.message form li input:focus,
.message form li textarea:hover,
.message form li textarea:focus{
	border-color: #fff;
}


.footer{
	background: #000d13;
	color: #fff;
}
.footer a{
	color: #fff;
}
.footer .container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.fmenu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 54%;
}
.fmenu li{
	display: block;
	line-height: 36px;
}
.fmenu li a{
	font-size: 14px;
	color: #ddd;
}


.ftitle{
	font-size: 20px;
	margin: 0 0 10px 0;
}


.fcontact .text{
	margin: 20px 0 0 0;
}
.fcontact p{
	line-height: 36px;
	font-size: 14px;
	color: #ddd;
}
.fcontact p .iconfont{
	font-size: 18px;
	margin: 0 10px 0 0;
}
.fcontact p strong{
	font-size: 18px;
	color: #fff;
}


.fewm .pic{
	margin: 20px 0 0 0;
}
.fewm p{
	font-size: 16px;
	text-align: center;
	margin: 10px 0 0 0;
}



.cr{
	padding: 15px 0;
	line-height: 30px;
	text-align: center;
	font-size: 14px;
	color: #aaa;
	background: #000d13;
	border-top: 1px solid #606060;
}
.cr a{
	font-size: 14px;
	color: #aaa;
}




.bannerbg,
.listbanner,
.nbanner{
	height: 480px;
}
.listbanner,
.nbanner{
	display: table;
}
.bannerbg .text{
	display: table-cell;
	vertical-align: middle;
	color: #fff;
}
.bannerbg2 .text{
	color: #222;
}
.bannerbg .text h2{
	font-size: 48px;
	font-weight: normal;
}
.bannerbg .text h2::after{
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	margin: 15px 0;
	background: #fff;
}
.bannerbg2 .text h2::after{
	background: #036ea4;
}
.bannerbg .text p{
	font-size: 20px;
}


.nabout{
	background: #fafafa;
}
.nabout .container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nabout .pic{
	width: 38%;
}
.nabout .nabouttext{
	width: 56%;
}
.nabout .nabouttext h3{
	font-weight: normal;
	font-size: 28px;
}
.nabout .nabouttext h3::after{
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	margin: 15px 0;
	background: #333;
}
.nabout .nabouttext .text{
	font-size: 18px;
	line-height: 36px;
	color: #333;
}


.cultureslide li{
	width: 25%;
	float: left;
	display: block;
	color: #fff;
	position: relative;
	border-right: 1px solid #fff;
	box-sizing: border-box;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.cultureslide li .pic{
	height: 520px;
}
.cultureslide li .pic img{
	object-position: left;
}
.cultureslide li.this{
	width: 50%;
}
.cultureslide li .text{
	position: absolute;
	left: 60px;
	top: 100px;
}
.cultureslide li .text .iconfont{
	font-size: 60px;
	line-height: 60px;
}
.cultureslide li .text strong{
	font-size: 24px;
	display: block;
	margin: 25px 0 20px 0;
}
.cultureslide li .text p{
	font-size: 18px;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.cultureslide li.this .text p{
	opacity: 1;
}
.cultureslide li:last-child{
	border: none;
}



.honor{
	background: #fafafa;
}
.honorslide{
	position: relative;
}
.honorslide li .pic{
	padding: 20px;
	background: #eee;
	margin: 0 10px;
}
.honorslide li:hover .pic img{
	transform: scale(1.2);
}
.arrow_honorslide{
	width: 50px;
	line-height: 50px;
	background: #eeeeee;
	border-radius: 50%;
	font-size: 24px;
	text-align: center;
	cursor: pointer;
	top: 50%;
	margin-top: -25px;
	position: absolute;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.arrow_honorslide:hover{
	background: #036ea4;
	color: #fff;
}
.arrow_honorslide_left{
	transform: rotate(180deg);
	left: -60px;
}
.arrow_honorslide_right{
	right: -60px;
}

.ncontact{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: url("../images/bg_ncontact.jpg") #f3f3f3 left bottom no-repeat;
}
.ncontact .text{
	width: 50%;
	padding: 70px 100px;
	box-sizing: border-box;
	line-height: 46px;
	color: #222;
}
.ncontact .text span{
	color: #999;
}
.ncontact .text strong{
	font-size: 22px;
}

.map{
	overflow: hidden;
	width: 50%;
}
.map iframe{
	position: relative;
	left: 50%;
	margin-left: -960px;
}

.ewmlist{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80%;
}
.ewmlist li{
	display: block;
	text-align: center;
}
.ewmlist li p{
	color: #333;
	margin: 10px 0 0 0;
	line-height: 18px;
}

.ndownload li{
	border: 1px solid #eee;
	border-radius: 10px;
	width: 49%;
	float: left;
	padding: 20px 60px 20px 30px;
	margin: 0 2% 2% 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #999;
	box-sizing: border-box;
}
.ndownload li:nth-child(2n){
	margin: 0 0 2% 0;
}
.ndownload li .text{
	margin: auto auto auto 15px;
	width: 70%;
}
.ndownload li .text span{
	color: #000;
	font-size: 18px;
	display: block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.ndownload li .text p{
	font-size: 14px;
	margin: 5px 0 0 0;
}
.ndownload li .icon-pdf{
	font-size: 46px;
}
.ndownload li a{
	color: #999;
	font-size: 14px;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.ndownload li .icon-xiazai{
	font-size: 26px;
	display: inline-block;
	vertical-align: middle;
}
.ndownload li:hover a{
	transform: scale(1.3);
	color: #036ea4;
}


.nnewscate li{
	display: block;
	line-height: 50px;
	text-align: center;
	width: 32%;
	margin: 0 2% 0 0;
	float: left;
	box-sizing: border-box;
}
.nnewscate li:last-child{
	margin: 0;
}
.nnewscate li a{
	display: block;
	border: 1px solid #dddddd;
	color: #222;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nnewscate li:hover a,
.nnewscate li.this a{
	background: #036ea4;
	border: 1px solid #036ea4;
	color: #fff;
}



.nnewslist li{
	display: block;
}
.nnewslist li a{
	padding: 30px;
	border-bottom: 1px dashed #dddddd;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nnewslist li:first-child a{
	border-top: 1px dashed #dddddd;
}
.nnewslist li .pic{
	width: 25%;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nnewslist li .text{
	width: 70%;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nnewslist li .text span{
	display: block;
	font-size: 18px;
	color: #222;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: normal;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nnewslist li .text p{
	font-size: 14px;
	line-height: 28px;
	color: #888;
	margin: 25px 0 50px 0;
}
.nnewslist li .text .date{
	font-size: 14px;
	color: #9a9a9a;
	line-height: 46px;
}
.nnewslist li .text .more{
	line-height: 46px;
	width: 140px;
	border-radius: 23px;
	float: right;
	text-align: center;
	font-size: 14px;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nnewslist li .text .more .iconfont{
	font-size: 20px;
	display: inline-block;
	vertical-align: bottom;
}
.nnewslist li:hover a{
	border-bottom: 1px dashed #036ea4;
}
.nnewslist li:hover .pic{
	margin: 0 0 0 1%;
}
.nnewslist li:hover .text{
	margin: 0 1% 0 0;
}
.nnewslist li:hover .text span{
	color: #036ea4;
	font-weight: bold;
}
.nnewslist li:hover .text .date{
	color: #036ea4;
}
.nnewslist li:hover .text .more{
	background: #036ea4;
	color: #fff;
}


.nprocate{
	width: 20%;
}
.catetitle{
	text-align: center;
	line-height: 70px;
	background: #036ea4;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
}
.catetitle .iconfont{
	font-weight: normal;
	font-size: 24px;
	display: inline-block;
	vertical-align: bottom;
	margin: 0 5px 0 0;
}
.nprocate li{
	line-height: 60px;
	display: block;
	position: relative;
	margin: 2px 0 0 0;
}
.nprocate li a{
	display: block;
	background: #f1f1f1;
	padding: 0 40px;
	color: #222;
}
.nprocate li ul{
	display: none;
}
.nprocate li ul li a{
	border: 1px solid #f1f1f1;
	background: #fff;
}
.nprocate li ul li a.this,
.nprocate li ul li a:hover{
	color: #036ea4;
}
.nprocate li .iconfont{
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	line-height: 60px;
	font-size: 24px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nprocate li.this .iconfont{
	transform: rotate(90deg);
}

.nprolist{
	width: 75%;
}
.nprolist li{
	display: block;
	float: left;
	width: 32%;
	margin: 0 2% 2% 0;
}
.nprolist li:nth-child(3n){
	margin: 0 0 2% 0;
}
.nprolist li a{
	display: block;
	background: #f1f1f1;
	padding: 0 0 30px 0;
}
.nprolist li p{
	padding: 0 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	font-size: 20px;
	line-height: 20px;
}
.nprolist li p::before{
	width: 40px;
	height: 4px;
	background: #036ea4;
	content: '';
	display: block;
	margin: 0 auto 20px auto;
}
.nprolist li:hover .pic img{
	transform: scale(1.1);
}


.nservice li{
	display: block;
	float: left;
	width: 32%;
	margin: 0 2% 0 0;
}
.nservice li:last-child{
	margin: 0;
}
.nservice li .text{
	background: #f8f8f8;
	padding: 40px 40px;
}
.nservice li .text strong{
	font-size: 24px;
	display: block;
	margin: 0 0 10px 0;
}
.nservice li .text p{
	font-size: 16px;
	line-height: 32px;
	color: #666;
}



.nvideolist{
	width: 75%;
}
.nvideolist li{
	display: block;
	float: left;
	width: 32%;
	margin: 0 2% 2% 0;
}
.nvideolist li:nth-child(3n){
	margin: 0 0 2% 0;
}
.nvideolist li .pic{
	display: block;
	background: url("../images/videobg.jpg");
	background-size: cover;
}
.nvideolist li p{
	padding: 0 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 20px;
	margin: 20px 0 0 0;
}
.nvideolist li:hover .pic img{
	transform: scale(1.1);
}

.nvideolist li .pic{
	position: relative;
}
.nvideolist li .pic::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	opacity: .34;
	z-index: 1;
}
.nvideolist li .pic .iconfont{
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 50px;
	color: #fff;
	margin-left: -25px;
	margin-top: -25px;
	z-index: 2;
}



.videoxq{
	background: #292929;
	height: 826px;
}
.videoxq .videoarea{
	width: 78%;
	position: relative;
	height: 100%;
}
.videoxq .videoarea video{
	width: 100%;
	display: block;
	height: 100%;
	object-fit: contain;
	object-position: center;
}


.videoclose{
	width: 54px;
	line-height: 54px;
	background: #222;
	color: #fff;
	text-align: center;
	font-size: 24px;
	position: absolute;
	left: 40px;
	top: 40px;
	border-radius: 50%;
	cursor: pointer;
}

.videointro{
	padding: 1.5%;
	width: 22%;
	box-sizing: border-box;
	color: #fff;
	height: 100%;
	overflow: scroll;
}

.videotext{
	margin: 0 0 30px 0;
	background: #343434;
	border-radius: 4px;
	padding: 20px;
}
.videotext .videotext_title{
	font-size: 16px;
	border-left: 3px solid #fff;
	line-height: 16px;
	padding: 0 0 0 6px;
}

.videotext .video_title{
	font-size: 22px;
	line-height: 30px;
	margin: 25px 0 0 0;
	padding: 15px 0 0 0;
	border-top: 1px solid #5d5d5d;
}
.videotext .text{
	font-size: 14px;
	line-height: 22px;
	opacity: .6;
	margin: 20px 0;
}
.protd li{
	width: 48.5%;
	background: #5d5d5d;
	margin: 0 3% 3% 0;
	float: left;
	display: block;
	text-align: center;
	line-height: 40px;
	border-radius: 2px;
}
.protd li:nth-child(2n){
	margin: 0 0 2% 0;
}

.video_contact{
	margin: 25px 0 0 0;
	padding: 15px 0 0 0;
	border-top: 1px solid #5d5d5d;
}
.video_contact p{
	background: #5d5d5d;
	display: block;
	text-align: center;
	line-height: 50px;
	border-radius: 2px;
	margin: 0 0 10px 0;
}


.nprotext{
	width: 75%;
}
.npro_top{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nproslide{
	width: 35%;
	border: 1px solid #dddddd;
	position: relative;
}
.arrow_nproslide{
	position: absolute;
	width: 40px;
	line-height: 40px;
	background: #b2b2b2;
	text-align: center;
	color: #fff;
	font-size: 24px;
	top: 50%;
	margin-top: -20px;
	cursor: pointer;
	border-radius: 2px;
	z-index: 2;
}
.arrow_nproslide_left{
	left: 3px;
	transform: rotate(180deg);
}
.arrow_nproslide_right{
	right: 3px;
}

.nprointro{
	width: 60%;
}
.nprointro .npro_name{
	font-size: 24px;
}
.nprointro .text{
	font-size: 16px;
	line-height: 26px;
	color: #666;
	margin: 20px 0 0 0;
	padding: 0 0 20px 0;
	border-bottom: 1px solid #ddd;
}
.nprointro .text p{
	margin: 0 0 10px 0;
}


.nprotel .iconfont{
	font-size: 48px;
	color: #036ea4;
	float: left;
}
.nprotel p{
	float: left;
	font-size: 16px;
	margin: 0 0 0 10px;
}
.nprotel p strong{
	display: block;
	font-size: 20px;
}



.nproservice{
	width: 164px;
	line-height: 50px;
	text-align: center;
	background: #036ea4;
	border-radius: 25px;
	padding: 0 6px;
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.nproservice .iconfont{
	width: 38px;
	line-height: 38px;
	background: #fff;
	border-radius: 50%;
	color: #036ea4;
	font-size: 26px;
}
.nproservice p{
	width: 114px;
}
.nproservice:hover{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.nproservice ul{
	position: absolute;
	top: 50px;
	left: 0;
	background: #036ea4;
	padding: 10px 0;
	width: 100%;
	display: none;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}
.nproservice ul li{
	display: block;
	text-align: center;
}
.nproservice ul li a{
	color: #fff;
	font-size: 18px;
}


.npropagechange{
	color: #999;
}
.npropagechange a{
	color: #036ea4;
}
.npropagechangel{
	width: 50%;
	text-align: left;
}
.npropagechanger{
	width: 50%;
	text-align: right;
}


.introtype{
	background: #f1f1f1;
}
.introtype li{
	display: block;
	float: left;
	line-height: 52px;
	width: 180px;
	text-align: center;
	font-size: 18px;
	color: #222;
	cursor: pointer;
}
.introtype li:hover,
.introtype li.this{
	background: #036ea4;
	color: #fff;
}

.nprointroarea .text{
	padding: 40px;
	border: 1px solid #f1f1f1;
	border-top: none;
	display: none;
}


.banner_pro{
	overflow: hidden;
}
.banner_pro .container{
	position: relative;
}
.banner_pro .pic{
	position: absolute;
	right: -10%;
	top: 20%;
	max-width: 90%;
}



.arrow_banner{
	position: absolute;
	top: 50%;
	font-size: 40px;
	color: #bbb;
	margin-top: -20px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: 	all 0.5s;
	-ms-transition: 	all 0.5s;
	-o-transition: 		all 0.5s;
	transition: 		all 0.5s;
}
.arrow_banner:hover{
	color: #036ea4;
}
.arrow_banner_left{
	left: 5%;
	transform: rotate(180deg);
}
.arrow_banner_right{
	right: 5%;
}
































